home *** CD-ROM | disk | FTP | other *** search
/ Crosscountry USA Photo Safari / Crosscountry USA Photo Safari.iso / Data / cc_base / pak00_16bit_f.pk3 / commodity_viewer_truck.ac.p < prev    next >
Text File  |  2002-09-09  |  736b  |  26 lines

  1. {
  2.   AnimationID = "gui/laptop/map_button/yellow_dot.pcx";
  3.   Hidden = FALSE;
  4.   ScriptID = script {
  5.     @updateTruck {
  6.       int x;
  7.       int y;
  8.       resid player_id;
  9.       player_id = ResPropGetResID(ResByName("Game"),"game_cur_player");
  10.       x = ResPropGetInt(player_id,"nav_truck_x");
  11.       y = ResPropGetInt(player_id,"nav_truck_y");
  12.       
  13.       x *= ResPropGetInt(SELF, "x_scale_numerator");
  14.       x /= ResPropGetInt(SELF, "x_scale_denominator");
  15.       x += ResPropGetInt(SELF, "x_offset");
  16.  
  17.       y *= ResPropGetInt(SELF, "y_scale_numerator");
  18.       y /= ResPropGetInt(SELF, "y_scale_denominator");
  19.       y += ResPropGetInt(SELF, "y_offset");
  20.  
  21.       ActorSetMXMY(SELF, x * 1000, y * 1000);
  22.     }
  23.  
  24.   };
  25. }
  26.